a622e78a8361c04424d97ea72a0772f44d9afb8d,gradoop-common/src/main/java/org/gradoop/common/storage/impl/hbase/HBaseEdgeHandler.java,HBaseEdgeHandler,readTargetId,#Result#,133
Before Change
*/
@Override
public GradoopId readTargetId(Result res) throws IOException {
GradoopId targetVertexId = new GradoopId();
Writables.getWritable(
res.getValue(CF_META_BYTES, COL_TARGET_BYTES), targetVertexId);
return targetVertexId;
}
/**
After Change
*/
@Override
public GradoopId readTargetId(Result res) throws IOException {
return GradoopId.fromByteArray(res.getValue(CF_META_BYTES, COL_TARGET_BYTES));
}
/**